home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / libsrc / gmon.c < prev    next >
C/C++ Source or Header  |  1994-07-19  |  9KB  |  337 lines

  1. /*-
  2.  * Copyright (c) 1991 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33.  
  34. #ifndef lint
  35. static char sccsid[] = "@(#)gmon.c    5.3 (Berkeley) 5/22/91";
  36. #endif /* not lint */
  37.  
  38. #include <unistd.h>
  39.  
  40. #undef DEBUG
  41. #ifdef DEBUG
  42. #include <stdio.h>
  43. #endif
  44.  
  45. #include "gmon.h"
  46.  
  47. extern mcount() asm ("mcount");
  48. extern void start_text () asm ("exec");
  49. /* extern char *minbrk asm ("minbrk"); */
  50.  
  51.     /*
  52.      *    froms is actually a bunch of unsigned shorts indexing tos
  53.      */
  54. static int        profiling = 3;
  55. static unsigned short    *froms;
  56. static struct tostruct    *tos = 0;
  57. static long        tolimit = 0;
  58. static char        *s_lowpc = 0;
  59. static char        *s_highpc = 0;
  60. static unsigned long    s_textsize = 0;
  61.  
  62. static int    ssiz;
  63. static char    *sbuf;
  64. static int    s_scale;
  65.     /* see profil(2) where this is describe (incorrectly) */
  66. #define        SCALE_1_TO_1    0x10000L
  67.  
  68. #define    MSG "No space for profiling buffer(s)\n"
  69.  
  70. static inline void *
  71. alloc(int s)
  72. {
  73.   void *res = malloc (s);
  74.   if (res)
  75.     bzero (res, s);
  76.   return res;
  77. }
  78.  
  79. monstartup(lowpc, highpc)
  80.     char    *lowpc;
  81.     char    *highpc;
  82. {
  83.     int            monsize;
  84.     char        *buffer;
  85.     register int    o;
  86.  
  87.     /*
  88.      *    round lowpc and highpc to multiples of the density we're using
  89.      *    so the rest of the scaling (here and in gprof) stays in ints.
  90.      */
  91.     lowpc = (char *)
  92.         ROUNDDOWN((unsigned)lowpc, HISTFRACTION*sizeof(HISTCOUNTER));
  93.     s_lowpc = lowpc;
  94.     highpc = (char *)
  95.         ROUNDUP((unsigned)highpc, HISTFRACTION*sizeof(HISTCOUNTER));
  96.     s_highpc = highpc;
  97.     s_textsize = highpc - lowpc;
  98.     monsize = (s_textsize / HISTFRACTION) + sizeof(struct phdr);
  99.     buffer = alloc( monsize );
  100.     if ( buffer == 0 ) {
  101.     write( 2 , MSG , sizeof(MSG) );
  102.     return;
  103.     }
  104.     froms = (unsigned short *) alloc ( s_textsize / HASHFRACTION );
  105.     if ( froms == 0 ) {
  106.     write( 2 , MSG , sizeof(MSG) );
  107.     froms = 0;
  108.     return;
  109.     }
  110.     tolimit = s_textsize * ARCDENSITY / 100;
  111.     if ( tolimit < MINARCS ) {
  112.     tolimit = MINARCS;
  113.     } else if ( tolimit > 65534 ) {
  114.     tolimit = 65534;
  115.     }
  116.     tos = (struct tostruct *) alloc( tolimit * sizeof( struct tostruct ) );
  117.     if ( tos == 0 ) {
  118.     write( 2 , MSG , sizeof(MSG) );
  119.     froms = 0;
  120.     tos = 0;
  121.     return;
  122.     }
  123. /*    minbrk = sbrk(0); */
  124.     tos[0].link = 0;
  125.     sbuf = buffer;
  126.     ssiz = monsize;
  127.     ( (struct phdr *) buffer ) -> lpc = lowpc - ((char *)start_text - 4);
  128.     ( (struct phdr *) buffer ) -> hpc = highpc - ((char *)start_text - 4);
  129.     ( (struct phdr *) buffer ) -> ncnt = ssiz;
  130.     monsize -= sizeof(struct phdr);
  131.     if ( monsize <= 0 )
  132.     return;
  133.     o = highpc - lowpc;
  134.     if( monsize < o )
  135.     {
  136.     int quot = o / monsize;
  137.  
  138.     if (quot >= 0x10000)
  139.         s_scale = 1;
  140.     else if (quot >= 0x100)
  141.         s_scale = 0x10000 / quot;
  142.     else if (o >= 0x800000)
  143.         s_scale = 0x1000000 / (o / (monsize >> 8));
  144.     else
  145.         s_scale = 0x1000000 / ((o << 8) / monsize);
  146.     }
  147.     else
  148.     s_scale = SCALE_1_TO_1;
  149.     moncontrol(1);
  150. }
  151.  
  152. _mcleanup()
  153. {
  154.     int            fd;
  155.     int            fromindex;
  156.     int            endfrom;
  157.     char        *frompc;
  158.     int            toindex;
  159.     struct rawarc    rawarc;
  160.  
  161.     moncontrol(0);
  162.     fd = creat( "gmon.out" , 0666 );
  163.     if ( fd < 0 ) {
  164.     perror( "mcount: gmon.out" );
  165.     return;
  166.     }
  167. #   ifdef DEBUG
  168.     fprintf( stderr , "[mcleanup] sbuf 0x%x ssiz %d\n" , sbuf , ssiz );
  169. #   endif DEBUG
  170.     write( fd , sbuf , ssiz );
  171.     endfrom = s_textsize / (HASHFRACTION * sizeof(*froms));
  172.     for ( fromindex = 0 ; fromindex < endfrom ; fromindex++ ) {
  173.     if ( froms[fromindex] == 0 ) {
  174.         continue;
  175.     }
  176.     frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof(*froms)) - ((char *)start_text - 4);
  177.     for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) {
  178. #        ifdef DEBUG
  179.         fprintf( stderr ,
  180.             "[mcleanup] frompc 0x%x selfpc 0x%x count %d\n" ,
  181.             frompc , tos[toindex].selfpc , tos[toindex].count );
  182. #        endif DEBUG
  183.         rawarc.raw_frompc = (unsigned long) frompc;
  184.         rawarc.raw_selfpc = (unsigned long) tos[toindex].selfpc;
  185.         rawarc.raw_count = tos[toindex].count;
  186.         write( fd , &rawarc , sizeof rawarc );
  187.     }
  188.     }
  189.     close( fd );
  190. }
  191.  
  192. mcount()
  193. {
  194.     register char            *selfpc;
  195.     register unsigned short        *frompcindex;
  196.     register struct tostruct    *top;
  197.     register struct tostruct    *prevtop;
  198.     register long            toindex;
  199.  
  200.     /*
  201.      *    find the return address for mcount,
  202.      *    and the return address for mcount's caller.
  203.      */
  204.  
  205.     /* selfpc = pc pushed by mcount call.
  206.        This identifies the function that was just entered.  */
  207.     selfpc = (char *) __builtin_return_address (0) - (int)((char *)start_text - 4);
  208.     /* frompcindex = pc in preceding frame.
  209.        This identifies the caller of the function just entered.  */
  210.     frompcindex = (void *) __builtin_return_address (1);
  211.     /*
  212.      *    check that we are profiling
  213.      *    and that we aren't recursively invoked.
  214.      */
  215.     if (profiling) {
  216.         goto out;
  217.     }
  218.     profiling++;
  219.     /*
  220.      *    check that frompcindex is a reasonable pc value.
  221.      *    for example:    signal catchers get called from the stack,
  222.      *            not from text space.  too bad.
  223.      */
  224. #ifdef DEBUG
  225.         fprintf (stderr, "from $%lx, self $%lx (low = $%lx)\n",
  226.              frompcindex, selfpc, s_lowpc);
  227. #endif
  228.     frompcindex = (unsigned short *)((long)frompcindex - (long)s_lowpc);
  229.     if ((unsigned long)frompcindex > s_textsize) {
  230.  
  231.         goto done;
  232.     }
  233.     frompcindex =
  234.         &froms[((long)frompcindex) / (HASHFRACTION * sizeof(*froms))];
  235.     toindex = *frompcindex;
  236.     if (toindex == 0) {
  237.         /*
  238.          *    first time traversing this arc
  239.          */
  240.         toindex = ++tos[0].link;
  241.         if (toindex >= tolimit) {
  242.             goto overflow;
  243.         }
  244.         *frompcindex = toindex;
  245.         top = &tos[toindex];
  246.         top->selfpc = selfpc;
  247.         top->count = 1;
  248.         top->link = 0;
  249.         goto done;
  250.     }
  251.     top = &tos[toindex];
  252.     if (top->selfpc == selfpc) {
  253.         /*
  254.          *    arc at front of chain; usual case.
  255.          */
  256.         top->count++;
  257.         goto done;
  258.     }
  259.     /*
  260.      *    have to go looking down chain for it.
  261.      *    top points to what we are looking at,
  262.      *    prevtop points to previous top.
  263.      *    we know it is not at the head of the chain.
  264.      */
  265.     for (; /* goto done */; ) {
  266.         if (top->link == 0) {
  267.             /*
  268.              *    top is end of the chain and none of the chain
  269.              *    had top->selfpc == selfpc.
  270.              *    so we allocate a new tostruct
  271.              *    and link it to the head of the chain.
  272.              */
  273.             toindex = ++tos[0].link;
  274.             if (toindex >= tolimit) {
  275.                 goto overflow;
  276.             }
  277.             top = &tos[toindex];
  278.             top->selfpc = selfpc;
  279.             top->count = 1;
  280.             top->link = *frompcindex;
  281.             *frompcindex = toindex;
  282.             goto done;
  283.         }
  284.         /*
  285.          *    otherwise, check the next arc on the chain.
  286.          */
  287.         prevtop = top;
  288.         top = &tos[top->link];
  289.         if (top->selfpc == selfpc) {
  290.             /*
  291.              *    there it is.
  292.              *    increment its count
  293.              *    move it to the head of the chain.
  294.              */
  295.             top->count++;
  296.             toindex = prevtop->link;
  297.             prevtop->link = top->link;
  298.             top->link = *frompcindex;
  299.             *frompcindex = toindex;
  300.             goto done;
  301.         }
  302.  
  303.     }
  304. done:
  305.     profiling--;
  306.     /* and fall through */
  307. out:
  308.     return;        /* normal return restores saved registers */
  309.  
  310. overflow:
  311.     profiling++; /* halt further profiling */
  312. #   define    TOLIMIT    "mcount: tos overflow\n"
  313.     write(2, TOLIMIT, sizeof(TOLIMIT));
  314.     goto out;
  315. }
  316.  
  317. /*
  318.  * Control profiling
  319.  *    profiling is what mcount checks to see if
  320.  *    all the data structures are ready.
  321.  */
  322. moncontrol(mode)
  323.     int mode;
  324. {
  325.     if (mode) {
  326.     /* start */
  327.     profil(sbuf + sizeof(struct phdr), ssiz - sizeof(struct phdr),
  328.         (int)s_lowpc, s_scale);
  329.     profiling = 0;
  330.     } else {
  331.     /* stop */
  332.     profil((char *)0, 0, 0, 0);
  333.     profiling = 3;
  334.     }
  335. }
  336.  
  337.